home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / smartcardio / CardChannel.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  463 b   |  19 lines

  1. package javax.smartcardio;
  2.  
  3. import java.nio.ByteBuffer;
  4.  
  5. public abstract class CardChannel {
  6.    protected CardChannel() {
  7.    }
  8.  
  9.    public abstract Card getCard();
  10.  
  11.    public abstract int getChannelNumber();
  12.  
  13.    public abstract ResponseAPDU transmit(CommandAPDU var1) throws CardException;
  14.  
  15.    public abstract int transmit(ByteBuffer var1, ByteBuffer var2) throws CardException;
  16.  
  17.    public abstract void close() throws CardException;
  18. }
  19.